crypto/tls.clientHelloMsg.pskIdentities (field)

15 uses

	crypto/tls (current package)
		handshake_client.go#L397: 	hello.pskIdentities = []pskIdentity{identity}
		handshake_client_tls13.go#L253: 	if len(hs.hello.pskIdentities) > 0 {
		handshake_client_tls13.go#L261: 			hs.hello.pskIdentities[0].obfuscatedTicketAge = uint32(ticketAge/time.Millisecond) + hs.session.ageAdd
		handshake_client_tls13.go#L280: 			hs.hello.pskIdentities = nil
		handshake_client_tls13.go#L345: 	if int(hs.serverHello.selectedIdentity) >= len(hs.hello.pskIdentities) {
		handshake_client_tls13.go#L350: 	if len(hs.hello.pskIdentities) != 1 || hs.session == nil {
		handshake_messages.go#L95: 	pskIdentities                    []pskIdentity
		handshake_messages.go#L263: 	if len(m.pskIdentities) > 0 { // pre_shared_key must be the last extension
		handshake_messages.go#L268: 				for _, psk := range m.pskIdentities {
		handshake_messages.go#L601: 				m.pskIdentities = append(m.pskIdentities, psk)
		handshake_server_tls13.go#L144: 		if len(hs.clientHello.pskIdentities) == 0 {
		handshake_server_tls13.go#L278: 	if len(hs.clientHello.pskIdentities) != len(hs.clientHello.pskBinders) {
		handshake_server_tls13.go#L282: 	if len(hs.clientHello.pskIdentities) == 0 {
		handshake_server_tls13.go#L286: 	for i, identity := range hs.clientHello.pskIdentities {